id/email
password
forgot password | create account
about | help | prefs
ReadingBatcode reading practice

 

 

Athenian: Booleansis_equal1

prev  |  next  |  chance

Checking to see if a number is equal to another number

def is_equal(num):
    x = (num == 5)
    return x
Function Call  Return Value
is_equal(3)
is_equal(5)
is_equal(7)

Experiment with this code on Gitpod.io

⬅ Back